home *** CD-ROM | disk | FTP | other *** search
- /*
- Visual FX
- For
- Image FX
- SetUp Script
- Written By J.L. White
-
- (C)1997 Merlin's Software
-
- */
- parse arg Num
- options results
- address "IMAGEFX.1"
-
-
-
- Gadget.1 = 'Select Direction Of Movement!'
- Gadget.2 = 'Horizontal In'
- Gadget.3 = 'Horizontal Out'
- Gadget.4 = 'Vertical In'
- Gadget.5 = 'Vertical Out'
- ListRequest 5 Gadget
- Type = 0
- if result = 2 then Type = 0
- if result = 3 then Type = 1
- if result = 4 then Type = 2
- if result = 5 then Type = 3
-
-
- call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
- call writeln TempFile,Type
- call close TempFile
-